home *** CD-ROM | disk | FTP | other *** search
/ The 640 MEG Shareware Studio 2 / The 640 Meg Shareware Studio CD-ROM Volume II (Data Express)(1993).ISO / dbase / do1beta.zip / BAR3D.DO < prev    next >
Text File  |  1991-07-24  |  321b  |  12 lines

  1. /*
  2.     demo the BGI 3-D bar graph
  3.     make sure you have defined BGIPATH in your autoexec.bat file !!
  4. */
  5. initGraph(0,0,envSymbol("bgipath"));
  6. bar3d(100,200,250,300,20,1);
  7. bar3d(400,100,500,300,10,1);
  8. outTextXY(100,340,"BGI 3-D Bar Graph");
  9. outTextXY(22,450,"Press any key to continue...");
  10. readchar();
  11. closeGraph();
  12.